this.g -= color.g;
this.b -= color.b;
this.a -= color.a;
clamp();
return this;
}
public void clamp () {
this.g -= color.g;
this.b -= color.b;
this.a -= color.a;
return clamp();
}
/** @return this Color for chaining */